Dashboard Temp Share Shortlinks Frames API

HTMLify

1171. Remove Zero Sum Consecutive Nodes from Linked List.java
Views: 1 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 1171. Remove Zero Sum Consecutive Nodes from Linked List java solution

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode removeZeroSumSublists(ListNode head) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode current = dummy;

        while (current != null) {
            int sum = 0;
            ListNode runner = current.next;
            while (runner != null) {
                sum += runner.val;
                if (sum == 0) {
                    current.next = runner.next;
                }
                runner = runner.next;
            }
            current = current.next;
        }

        return dummy.next;
    }
}